-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding time_spine field for manifest #112
base: main
Are you sure you want to change the base?
Conversation
Warning Rate limit exceeded@pgoslatara has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 14 minutes and 12 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe changes introduce a new optional attribute, Changes
Sequence Diagram(s)Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
Ahh, just cam across this, looks like |
7f094d4
to
deda5ec
Compare
deda5ec
to
b2c708f
Compare
Updated! |
@pgoslatara Thank you for the contribution. But, I think supporting the feature is a little early, as it will be released as a part of dbt-core 1.9.
|
Thanks @yu-iskw! What does this mean for supporting dbt Cloud? There is now a versionless option, in fact this will soon become the only option (doc) and is currently the recommended option (doc). Does this mean |
This project mainly supports dbt Core, because the JSON schema for dbt Cloud aren't available in public. For instance, as far as I know, Meanwhile, we have evolved dbt artifacts of dbt Core as upgrading the version like manifest v10, v11 and v 12. If we upgrade the versions of artifacts in the future, generated artifacts in dbt Cloud have to follow the versions as well regardless versionless. Each artifacts has a property about a dbt version. As the stable version of dbt Core 1.9 isn't released yet, it might be early to update manifest v12 based on dbt Core 1.9. |
User description
The latest version of
manifest.json
from dbt Cloud contains atime_spine
field for nodes. This PR adds this field so manifests can be parsed.Extra info: this is what the
metadata
field looks like from themanifest.json
I downloaded:PR Type
enhancement
Description
time_spine
field to theNodes4
class in themanifest_v12.py
file.time_spine
attribute from the latestmanifest.json
version.Changes walkthrough 📝
manifest_v12.py
Add `time_spine` field to `Nodes4` class in manifest parser
dbt_artifacts_parser/parsers/manifest/manifest_v12.py
time_spine
field toNodes4
class.time_spine
field is optional and of typestr
.